bodyParser is deprecated.

148

'bodyParser' is deprecated. -

// If you are using Express 4.16+ you don't have to import body-parser anymore. 
// You can do it just like this:

app.use(express.urlencoded({extended: true}));
app.use(express.json()) // To parse the incoming requests with JSON payloads

'bodyParser' is deprecated. -

const express = require('express');

app.use(express.urlencoded({ extended: true }));
app.use(express.json());

'bodyParser' is deprecated. -

app.use(bodyParser.urlencoded());

app.use(bodyParser.json());

'bodyParser' is deprecated. -

app.use(bodyParser()); //Now deprecated

Comments

Submit
0 Comments